home *** CD-ROM | disk | FTP | other *** search
Text File | 1996-03-20 | 1.3 KB | 44 lines | [TEXT/MPS ] |
- ;
- ; File: Backwash.a
- ;
- ; Assembly code (jump table) for a printing extension
- ; that adds a QuickDraw picture to each page despooled.
- ;
- ; Dave Hersey
- ; Apple Developer Technical Support
- ;
- ; 11/11/92 - dmh - Created.
- ; 1/28/93 - dmh - Cleaned up for a5 seed CD.
- ; 3/26/93 - dmh - Updated for b1c2 (Translator changes).
- ; 8/24/93 - dmh - Updated for b2.
- ; 12/18/93 - dmh - Updated for b3.
- ;
-
- EXPORT EntryPoint
- IMPORT BWInitialize ; Our override for GXInitialize.
- IMPORT BWShutDown ; Our override for GXShutDown.
- IMPORT BWJobPrintDialog ; Our override for GXJobPrintDialog.
- IMPORT BWHandlePanelEvent ; Our override for GXHandlePanelEvent.
- IMPORT BWCreateSpoolFile ; Our override for GXCreateSpoolFile.
- IMPORT BWDespoolPage ; Our override for GXDespoolPage.
- IMPORT BWCloseSpoolFile ; Our override for GXCloseSpoolFile.
-
- EntryPoint PROC ; Our main entry point.
-
- DC.L 0 ; Reserved for owner count.
-
- JMP BWInitialize ; (offset = 4)
- JMP BWShutDown ; (offset = 8)
- JMP BWJobPrintDialog ; (offset = 12)
- JMP BWHandlePanelEvent ; (offset = 16)
- JMP BWCreateSpoolFile ; (offset = 20)
- JMP BWDespoolPage ; (offset = 24)
- JMP BWCloseSpoolFile ; (offset = 28)
-
- RTS ; this is here so that the
- ; entrypoint will be labled "Anon0"
-
- ENDPROC
-
- END
-